crypto/aes.aesCipher.l (field)

10 uses

	crypto/aes (current package)
		aes_gcm.go#L48: 	g := &gcmAsm{ks: c.enc[:c.l], nonceSize: nonceSize, tagSize: tagSize}
		cipher.go#L19: 	l   uint8 // only this length of the enc and dec array is actually used
		cipher.go#L51: 	c := aesCipher{l: uint8(len(key) + 28)}
		cipher.go#L52: 	expandKeyGo(key, c.enc[:c.l], c.dec[:c.l])
		cipher.go#L68: 	encryptBlockGo(c.enc[:c.l], dst, src)
		cipher.go#L81: 	decryptBlockGo(c.dec[:c.l], dst, src)
		cipher_asm.go#L49: 	c := aesCipherGCM{aesCipherAsm{aesCipher{l: uint8(len(key) + 28)}}}
		cipher_asm.go#L82: 	encryptBlockAsm(int(c.l)/4-1, &c.enc[0], &dst[0], &src[0])
		cipher_asm.go#L96: 	decryptBlockAsm(int(c.l)/4-1, &c.dec[0], &dst[0], &src[0])